Data augmentation is essential to teach the network the desired invariance and robustness properties, when only few training samples are available.
影像增量的3個優點
其中robustness是(應用的模型應用的關鍵環境/光線變化等)
In case of microscopical images we primarily need shift and rotation invariance as well as
robustness to deformations and gray value variations.
這一段要我們去思考,這種case需要注意哪一種的 robustness,以顯微鏡細胞圖的例子:
Especially random elastic deformations of the training samples seem to be the key concept to train a segmentation network with very few annotated images. We generate smooth deformations using random displacement vectors on a coarse 3 by 3 grid.
這邊提出彈性變形是在少樣本分類的關鍵。所以用了randome displacement在3X3的網格上。
The displacements are sampled from a Gaussian distribution with 10 pixels standard
deviation. Per-pixel displacements are then computed using bicubic interpolation.
說明如何彈性變形。
Drop-out layers at the end of the contracting path perform further implicit data augmentation.
這邊說明的加入 drop out layer 目的是做data augmentation
今天又看到新的東西了,drop out 跟 data augmentation 竟然有關連性,明天我們看看到底是怎麼回事吧~~
[1]Model-Based Robust Deep Learning
[2]Dropout as data augmentation